From 031ac7c9c37ad405d29837fe6eb2b2b82cec68f5 Mon Sep 17 00:00:00 2001 From: Miles Bader Date: Mon, 10 Jun 2002 08:04:48 +0000 Subject: [PATCH] (line-move-finish): Inhibit field motion when computing `line-end'. --- lisp/simple.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lisp/simple.el b/lisp/simple.el index 6ae43f63770..9f01cef9f66 100644 --- a/lisp/simple.el +++ b/lisp/simple.el @@ -2668,7 +2668,8 @@ Outline mode sets this." (line-end ;; Compute the end of the line ;; ignoring effectively intangible newlines. - (let ((inhibit-point-motion-hooks nil)) + (let ((inhibit-point-motion-hooks nil) + (inhibit-field-text-motion t)) (save-excursion (end-of-line) (point))))) ;; Move to the desired column. -- 2.30.2